238c8531802dc4068c3d4cf0e772f5c5fc80c9d6,src-gwt/org/opencms/ade/galleries/client/ui/CmsGalleryField.java,CmsGalleryField,CmsGalleryField,#I_CmsGalleryConfiguration#,230
Before Change
m_uploadButton.setText(null);
m_uploadButton.setButtonStyle(ButtonStyle.TRANSPARENT, null);
m_uploadButton.setImageClass(I_CmsImageBundle.INSTANCE.style().uploadIcon());
initWidget(uibinder.createAndBindUi(this));
this.addUploadZone(m_uploadDropZone);
m_configuration = configuration;
I_CmsLayoutBundle.INSTANCE.galleryFieldCss().ensureInjected();
After Change
m_uploadButton.setText(null);
m_uploadButton.setButtonStyle(ButtonStyle.TRANSPARENT, null);
m_uploadButton.setImageClass(I_CmsImageBundle.INSTANCE.style().uploadIcon());
m_main = uibinder.createAndBindUi(this);
initWidget(m_main);
initUploadZone(m_uploadDropZone);
m_configuration = configuration;
I_CmsLayoutBundle.INSTANCE.galleryFieldCss().ensureInjected();